home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises. All rights reserved.
-
- This file is part of Aladdin Ghostscript.
-
- Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
- or distributor accepts any responsibility for the consequences of using it,
- or for whether it serves any particular purpose or works at all, unless he
- or she says so in writing. Refer to the Aladdin Ghostscript Free Public
- License (the "License") for full details.
-
- Every copy of Aladdin Ghostscript must include a copy of the License,
- normally in a plain ASCII text file named PUBLIC. The License grants you
- the right to copy, modify and redistribute Aladdin Ghostscript, but only
- under certain conditions described in the License. Among other things, the
- License requires that the copyright notice and this notice be preserved on
- all copies.
- */
-
- /* gsinit.c */
- /* Initialization for the imager */
- #include "stdio_.h"
- #include "memory_.h"
- #include "gdebug.h"
- #include "gscdefs.h"
- #include "gsmemory.h"
- #include "gp.h"
- #include "gslib.h" /* interface definition */
-
- /* Imported from gsmisc.c */
- extern FILE *gs_debug_out;
-
- /* Imported from gsmemory.c */
- void gs_malloc_init(P0());
- void gs_malloc_release(P0());
-
- /* Configuration information from gconfig.c. */
- extern_gx_init_table();
-
- /* Initialization to be done before anything else. */
- void
- gs_lib_init(FILE *debug_out)
- { gs_lib_init0(debug_out);
- gs_lib_init1(&gs_memory_default);
- }
- void
- gs_lib_init0(FILE *debug_out)
- { gs_debug_out = debug_out;
- gs_malloc_init();
- /* Reset debugging flags */
- memset(gs_debug, 0, 128);
- gs_log_errors = 0;
- }
- void
- gs_lib_init1(gs_memory_t *mem)
- { /* Run configuration-specific initialization procedures. */
- { void (**ipp)(P1(gs_memory_t *));
- for ( ipp = gx_init_table; *ipp != 0; ++ipp )
- (**ipp)(mem);
- }
- }
-
- /* Clean up after execution. */
- void
- gs_lib_finit(int exit_status, int code)
- { fflush(stderr); /* in case of error exit */
- /* Do platform-specific cleanup. */
- gp_exit(exit_status, code);
- gs_malloc_release();
- }
-